Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

EntityWithFileAndImage.cs 397 B

2 settimane fa
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. }