UserMessages.cs 704 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. // Code scaffolded by EF Core assumes nullable reference types (NRTs) are not used or disabled.
  4. // If you have enabled NRTs for your project, then un-comment the following line:
  5. // #nullable disable
  6. namespace MS.WebApi.Models2
  7. {
  8. public partial class UserMessages
  9. {
  10. public Guid Id { get; set; }
  11. public string PhoneNumber { get; set; }
  12. public Guid? AccountId { get; set; }
  13. public int? IsSmsSent { get; set; }
  14. public DateTime? SentTime { get; set; }
  15. public string AccountType { get; set; }
  16. public string MessageContent { get; set; }
  17. public DateTime? CreatedAt { get; set; }
  18. }
  19. }