Account.cs 221 B

1234567891011
  1. using System;
  2. namespace Repository.Entiies
  3. {
  4. public class Account
  5. {
  6. public Guid Id { get; set; }
  7. public string AccountID { get; set; }
  8. public string ChangePassword { get; set; }
  9. }
  10. }