You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

IModel.cs 195 B

12345678910111213
  1. using System.Threading.Tasks;
  2. namespace Discord
  3. {
  4. public interface IModel<TId> : IModel
  5. {
  6. TId Id { get; }
  7. }
  8. public interface IModel
  9. {
  10. Task Save();
  11. }
  12. }