- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SWRIS.Dtos
- {
- public class RecordIdAnDataFilePathDto
- {
- public int RecordId { get; set; }
- public string DataFilePath { get; set; }
- }
- }
|