|
|
-
- using System.ComponentModel.DataAnnotations.Schema;
- namespace Sevomin.Models
- {
- [Table("Dovomin")]
- public class Dovomin : User
- {
- public string FirstName { get; set; }
- public string LastName { get; set; }
-
- public Dovomin()
- {
-
- }
-
- public Dovomin(string userName, string firstName, string lastName)
- : base(userName)
- {
- this.FirstName = firstName;
- this.LastName = lastName;
- }
- }
- }
|