12 lines
397 B
C#
12 lines
397 B
C#
namespace DongfangHydro.Dashboard.Api.Domain;
|
|
|
|
public sealed class Partner
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Code { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string PartnerType { get; set; } = "supplier";
|
|
public string ContactName { get; set; } = string.Empty;
|
|
public string ContactPhone { get; set; } = string.Empty;
|
|
}
|