16 lines
364 B
C#
16 lines
364 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebDoorCreator.Data.DbModels
|
|
{
|
|
public class Sizing
|
|
{
|
|
public string width { get; set; } = "33.8125";
|
|
public string height { get; set; } = "81.25";
|
|
public string thickness { get; set; } = "1.75";
|
|
}
|
|
}
|