|
|
namespace Sevomin.Models
|
|
{
|
|
public class Dovomin : User
|
|
{
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
|
|
public Dovomin()
|
|
{
|
|
|
|
}
|
|
|
|
public Dovomin(string userName, string fistName, string lastName)
|
|
: base(userName)
|
|
{
|
|
this.FirstName = FirstName;
|
|
this.LastName = lastName;
|
|
}
|
|
}
|
|
}
|