17 lines
384 B
C#
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; }
|
|
}
|
|
}
|