Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

2 тижднів тому
1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Domain
  7. {
  8. public abstract class EntityWithFileAndImage: EntityWithImage
  9. {
  10. public string FileName { set; get; }
  11. }
  12. public abstract class EntityWithImage : BaseEntity
  13. {
  14. public string ImageFileName { set; get; }
  15. }
  16. }