mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 09:41:19 +00:00
18 lines
375 B
C#
18 lines
375 B
C#
using MongoDB.Bson.Serialization.Attributes;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCore.Models
|
|
{
|
|
public class WidgetRadio : Widget
|
|
{
|
|
[BsonElement("Provider")]
|
|
public string Provider { get; set; }
|
|
|
|
[BsonElement("Link")]
|
|
public string Link { get; set; }
|
|
}
|
|
}
|