27 lines
565 B
C#
27 lines
565 B
C#
using LiteCharms.Features.Models;
|
|
|
|
namespace LiteCharms.Features.MidrandBooks.Customers.Models;
|
|
|
|
public class Customer
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public string? Company { get; set; }
|
|
|
|
public string? VatNumber { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
|
|
public string? Website { get; set; }
|
|
|
|
public string? Phone { get; set; }
|
|
|
|
public ICollection<SocialMedia>? SocialMedia { get; set; }
|
|
|
|
public bool Enabled { get; set; }
|
|
}
|