file360

Log | Files | Refs

ColorList.cs (333B)


      1 using System;
      2 using System.Collections.Generic;
      3 using System.Linq;
      4 using System.Text;
      5 using System.Threading.Tasks;
      6 using Windows.UI;
      7 
      8 namespace File360
      9 {
     10     public class ColorList
     11     {
     12         public string Color { get; set; }
     13 
     14         public ColorList(string color)
     15         {
     16             this.Color = color;
     17         }
     18     }
     19 }