13 lines
307 B
C#
13 lines
307 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ServiceStationContracts.BindingModels {
|
|
public class ReportWorkBindingModel {
|
|
public string FileName { get; set; } = string.Empty;
|
|
public DateTime? Date { get; set; }
|
|
}
|
|
}
|