14 lines
387 B
C#
14 lines
387 B
C#
namespace NetCore.Model.crm
|
|
{
|
|
public class crm_callrecord
|
|
{
|
|
public decimal pkid { get; set; }
|
|
public string filename { get; set; }
|
|
public int servicenumber { get; set; }
|
|
public int saleseid { get; set; }
|
|
public string timestart { get; set; }
|
|
public string resid { get; set; }
|
|
public int timelength { get; set; }
|
|
}
|
|
}
|