-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLayoutData.cs
31 lines (28 loc) · 1.06 KB
/
LayoutData.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// <auto-generated> This file has been auto generated by EF Core Power Tools. </auto-generated>
using System;
using System.Collections.Generic;
#nullable disable
namespace Concoct_Builder
{
public partial class LayoutData
{
public long Id { get; set; }
public long? LayoutId { get; set; }
public string ElementName { get; set; }
public string Base64 { get; set; }
public string Translate { get; set; }
public long? RefereenceScreen { get; set; }
public string ComponentName { get; set; }
public string OffsetX { get; set; }
public string OffsetY { get; set; }
public string Height { get; set; }
public string Width { get; set; }
public long? IsTrigger { get; set; }
public string HPercent { get; set; }
public string WPercent { get; set; }
public string HoPercent { get; set; }
public string WoPercent { get; set; }
public virtual Layouts Layout { get; set; }
public virtual Layouts RefereenceScreenNavigation { get; set; }
}
}