20 lines
365 B
C#
20 lines
365 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Domain.Dto
|
|
{
|
|
public class HolidayCalendarDto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public bool Holiday { get; set; }
|
|
|
|
public string Date { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
}
|
|
}
|