18 lines
502 B
C#
18 lines
502 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Interfaces
|
|
{
|
|
public class User
|
|
{
|
|
public User()
|
|
{
|
|
AssociatedIdentifiers = new List<Identifier>();
|
|
}
|
|
public int UserId { get; set; }
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
public int HoursPerWeek { get; set; }
|
|
public int AssociatedIdentifierCount { get; set; }
|
|
public List<Identifier> AssociatedIdentifiers { get; set; }
|
|
}
|
|
} |