mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 01:31:19 +00:00
39 lines
1.3 KiB
C#
39 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCore.Models.Arlo
|
|
{
|
|
public class UserMedia
|
|
{
|
|
public string ownerId { get; set; }
|
|
public string uniqueId { get; set; }
|
|
public string deviceId { get; set; }
|
|
public string createdDate { get; set; }
|
|
public string currentState { get; set; }
|
|
public string name { get; set; }
|
|
public string contentType { get; set; }
|
|
public string reason { get; set; }
|
|
public string createdBy { get; set; }
|
|
public long lastModified { get; set; }
|
|
public long localCreatedDate { get; set; }
|
|
public string presignedContentUrl { get; set; }
|
|
public string presignedThumbnailUrl { get; set; }
|
|
public long utcCreatedDate { get; set; }
|
|
public string timeZone { get; set; }
|
|
public string mediaDuration { get; set; }
|
|
public Meta meta { get; set; }
|
|
public int mediaDurationSecond { get; set; }
|
|
public bool donated { get; set; }
|
|
}
|
|
|
|
public class Meta
|
|
{
|
|
public string bit_rate { get; set; }
|
|
public string width { get; set; }
|
|
public string codec_tag_string { get; set; }
|
|
public string height { get; set; }
|
|
}
|
|
}
|