Skip to content
Snippets Groups Projects
Select Git revision
  • 9b9b91971a8ecafacf4e87de8b2f4639ea4c8b82
  • main default protected
2 results

Cards.cs

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Cards.cs 392 B
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    
    namespace Levenshtein
    {
        public class Cards
        {
            public string Name { get; set; }
            public string Mana { get; init; }
            public double Cmc { get; init; }
            public string Type { get; init; }
            public double Count { get; init; }
    
        }
    
    }