mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
19 lines
573 B
C#
19 lines
573 B
C#
using System;
|
|
|
|
#nullable enable
|
|
namespace BililiveRecorder.Core.Callback
|
|
{
|
|
public class RecordEndData
|
|
{
|
|
public Guid EventRandomId { get; set; } = Guid.NewGuid();
|
|
|
|
public int RoomId { get; set; } = 0;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Title { get; set; } = string.Empty;
|
|
public string RelativePath { get; set; } = string.Empty;
|
|
public long FileSize { get; set; }
|
|
public DateTimeOffset StartRecordTime { get; set; }
|
|
public DateTimeOffset EndRecordTime { get; set; }
|
|
}
|
|
}
|