Utopia-Canteen-System/Models/ResolvedMealSession.cs

17 lines
467 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UtopiaCanteenSystem.Models;
public class ResolvedMealSession
{
public MealSession Session { get; set; }
public string MealName { get; set; } = string.Empty;
public string SiteId { get; set; } = string.Empty;
public string StartTime { get; set; } = string.Empty;
public string EndTime { get; set; } = string.Empty;
}