19 lines
597 B
C#
19 lines
597 B
C#
using salesbook.Shared.Core.Dto.Activity;
|
|
using salesbook.Shared.Core.Dto.JobProgress;
|
|
using salesbook.Shared.Core.Entity;
|
|
|
|
namespace salesbook.Shared.Core.Dto.PageState;
|
|
|
|
public class UserPageState
|
|
{
|
|
public string? CodUser { get; set; }
|
|
|
|
public ContactDTO Anag { get; set; }
|
|
public List<PersRifDTO>? PersRif { get; set; }
|
|
public List<JtbComt> Commesse { get; set; }
|
|
public StbUser? Agente { get; set; }
|
|
public Dictionary<string, List<CRMJobStepDTO>?> Steps { get; set; }
|
|
public List<ActivityDTO> Activitys { get; set; }
|
|
|
|
public int ActiveTab { get; set; }
|
|
} |