Category.cs 348 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Media;
  7. namespace WindowedMyApp
  8. {
  9. public class Category
  10. {
  11. public float Percentage { get; set; }
  12. public string Title { get; set; }
  13. public Brush ColorBrush { get; set; }
  14. }
  15. }