Files
PowderCoatingLogix/src/PowderCoating.Application/DTOs/ShopWorker/ShopWorkerDto.cs
T
2026-04-23 21:38:24 -04:00

17 lines
493 B
C#

using PowderCoating.Core.Enums;
namespace PowderCoating.Application.DTOs.ShopWorker;
public class ShopWorkerDto
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
public ShopWorkerRole Role { get; set; }
public string? Phone { get; set; }
public string? Email { get; set; }
public bool IsActive { get; set; }
public string? Notes { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
}