- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace ProductionLineMonitor.Application.Services.HomeService.Dtos
- {
- public class UpdateRemarkDto
- {
- public string Id { get; set; } = string.Empty;
- public string Remark { get; set; } = string.Empty;
- public int Year { get; set; }
- public int Month { get; set; }
- }
- }
|