TimeSheetFormStore.cs 158 B

12345678
  1. #nullable enable
  2. using Comal.Classes;
  3. namespace Comal.Stores;
  4. public class TimeSheetFormStore : EntityFormStore<TimeSheetForm, TimeSheet, TimeSheetLink>
  5. {
  6. }