Class1.cs 292 B

1234567891011121314
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. namespace WpfApp2.model
  6. {
  7. public class Hero
  8. {
  9. public string name { get; set; }
  10. public string race { get; set; }
  11. public string photo { get; set; }
  12. }
  13. }