Files
BeWoPlaner/Data/Entities/BeWoMobilBrowserInfo.cs
2016-06-27 01:45:38 +02:00

25 lines
736 B
C#

using BS.Shared;
namespace BeWo.Data.Entities
{
public class BeWoMobilBrowserInfo : BeWoEntityBase
{
public static string PropertyName_Type = "Type";
public static string PropertyName_Name = "Name";
public static string PropertyName_BrowserVersion = "BrowserVersion";
public static string PropertyName_Platform = "Platform";
public static string PropertyName_Tenant = "Tenant";
public BeWoMobilBrowserInfo()
{
_Tid = TableID.BeWoMobilBrowserInfo;
}
public virtual string Type { get; set; }
public virtual string Name { get; set; }
public virtual string BrowserVersion { get; set; }
public virtual string Platform { get; set; }
public virtual string Tenant { get; set; }
}
}