mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
19 lines
415 B
C#
19 lines
415 B
C#
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
public interface IHasBudget
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the budget.
|
|
/// </summary>
|
|
/// <value>The budget.</value>
|
|
double? Budget { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the revenue.
|
|
/// </summary>
|
|
/// <value>The revenue.</value>
|
|
double? Revenue { get; set; }
|
|
}
|
|
}
|