BaseEntity.cs 422 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MediaBrowser.Model.Entities
  6. {
  7. /// <summary>
  8. /// Provides a base entity for all of our types
  9. /// </summary>
  10. public abstract class BaseEntity
  11. {
  12. public string Name { get; set; }
  13. public Guid Id { get; set; }
  14. public string PrimaryImagePath { get; set; }
  15. }
  16. }