generated from Integry/Template_NetMauiBlazorHybrid
11 lines
252 B
C#
11 lines
252 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace salesbook.Shared.Core.Dto.Activity;
|
|
|
|
public class WhereCondActivity
|
|
{
|
|
public DateTime? Start { get; set; }
|
|
public DateTime? End { get; set; }
|
|
|
|
public string? ActivityId { get; set; }
|
|
} |