| 1234567891011121314151617 |
- using System;
- using System.Diagnostics.CodeAnalysis;
- using Comal.Classes;
- using InABox.Core;
- using InABox.Mobile;
- namespace PRS.Mobile
- {
- public class MeetingAttendeeModel : CoreRepository<MeetingAttendeeModel, MeetingAttendeeShell, Assignment>
- {
-
- public MeetingAttendeeModel(IModelHost host, Func<Filter<Assignment>>? filter = null, Func<string>? cachefilename = null) : base(host, filter, cachefilename)
- {
- }
- }
- }
|