mirror of https://github.com/abpframework/eventhub
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
759 B
34 lines
759 B
using System;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace EventHub.Events
|
|
{
|
|
public class EventInListDto : EntityDto<Guid>
|
|
{
|
|
public string OrganizationName { get; set; }
|
|
|
|
public string OrganizationDisplayName { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public DateTime StartTime { get; set; }
|
|
|
|
public DateTime EndTime { get; set; }
|
|
|
|
public bool IsOnline { get; set; }
|
|
|
|
public string Country { get; set; }
|
|
|
|
public string City { get; set; }
|
|
|
|
public int? Capacity { get; set; }
|
|
|
|
public bool IsLiveNow { get; set; }
|
|
|
|
public string UrlCode { get; set; }
|
|
|
|
public string Url { get; set; }
|
|
}
|
|
}
|
|
|