LSFE/LSFE.Infrastructure/Dto/Maintenance/ProductDto.cs
2026-07-30 10:31:04 +08:00

17 lines
384 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.Infrastructure.Dto.Maintenance
{
public class ProductDto
{
public Guid Id { get; set; }
public string? UserId { get; set; }
public string? UpdatedBy { get; set; }
public string? UserRole { get; set; }
}
}