You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
385 B

11 years ago
11 years ago
  1. using System.ComponentModel.DataAnnotations.Schema;
  2. namespace Sevomin.Models
  3. {
  4. [Table("Avalin")]
  5. public class Avalin : User
  6. {
  7. public string CompanyName { get; set; }
  8. public Avalin()
  9. {
  10. }
  11. public Avalin(string userName, string companyName) : base(userName)
  12. {
  13. this.CompanyName = companyName;
  14. }
  15. }
  16. }