summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/Field.cs
blob: fe1ea1fa35be8ce23cbae271d2ea5e60bb633a53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace DSACore.Models.Database
{
    public class Field
    {
        private string Name { get; set; }
        private int value { get; set; }
    }
}