16 lines
253 B
C#
16 lines
253 B
C#
|
|
namespace Domain.Entities
|
|||
|
|
{
|
|||
|
|
public class EBusinessUnit
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
public string? Code { get; set; }
|
|||
|
|
|
|||
|
|
public string? Description { get; set; }
|
|||
|
|
|
|||
|
|
public string? Manager { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|