DocSpace-buildtools/common/ASC.Core.Common/Core/Partner.cs
2020-07-08 18:30:23 +03:00

138 lines
4.0 KiB
C#

/*
*
* (c) Copyright Ascensio System Limited 2010-2018
*
* This program is freeware. You can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) version 3 as published by the Free Software Foundation (https://www.gnu.org/copyleft/gpl.html).
* In accordance with Section 7(a) of the GNU GPL its Section 15 shall be amended to the effect that
* Ascensio System SIA expressly excludes the warranty of non-infringement of any third-party rights.
*
* THIS PROGRAM IS DISTRIBUTED WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR
* FITNESS FOR A PARTICULAR PURPOSE. For more details, see GNU GPL at https://www.gnu.org/copyleft/gpl.html
*
* You can contact Ascensio System SIA by email at sales@onlyoffice.com
*
* The interactive user interfaces in modified source and object code versions of ONLYOFFICE must display
* Appropriate Legal Notices, as required under Section 5 of the GNU GPL version 3.
*
* Pursuant to Section 7 § 3(b) of the GNU GPL you must retain the original ONLYOFFICE logo which contains
* relevant author attributions when distributing the software. If the display of the logo in its graphic
* form is not reasonably feasible for technical reasons, you must include the words "Powered by ONLYOFFICE"
* in every copy of the program you distribute.
* Pursuant to Section 7 § 3(e) we decline to grant you any rights under trademark law for use of our trademarks.
*
*/
using System;
namespace ASC.Core
{
public class Partner
{
public string Id { get; set; }
public string Email { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Url { get; set; }
public string Phone { get; set; }
public string Language { get; set; }
public string CompanyName { get; set; }
public string Country { get; set; }
public string CountryCode { get; set; }
public bool CountryHasVat { get; set; }
public string Address { get; set; }
public string VatId { get; set; }
public DateTime CreationDate { get; set; }
public PartnerStatus Status { get; set; }
public string Comment { get; set; }
public string Portal { get; set; }
public bool PortalConfirmed { get; set; }
public bool IsAdmin { get { return PartnerType == PartnerType.Administrator; } }
public decimal Limit { get; set; }
public int Discount { get; set; }
public string PayPalAccount { get; set; }
public decimal Deposit { get; set; }
public bool Removed { get; set; }
public string Currency { get; set; }
public string LogoUrl { get; set; }
public string DisplayName { get; set; }
public PartnerDisplayType DisplayType { get; set; }
public string SupportPhone { get; set; }
public string SupportEmail { get; set; }
public string SalesEmail { get; set; }
public string TermsUrl { get; set; }
public string Theme { get; set; }
public string RuAccount { get; set; }
public string RuBank { get; set; }
public string RuKs { get; set; }
public string RuKpp { get; set; }
public string RuBik { get; set; }
public string RuInn { get; set; }
public PartnerType PartnerType { get; set; }
public PartnerPaymentMethod PaymentMethod { get; set; }
public string PaymentUrl { get; set; }
public decimal AvailableCredit { get; set; }
public bool CustomEmailSignature { get; set; }
public string AuthorizedKey { get; set; }
public override bool Equals(object obj)
{
return obj is Partner p && p.Id == Id;
}
public override int GetHashCode()
{
return (Id ?? string.Empty).GetHashCode();
}
public override string ToString()
{
return FirstName + " " + LastName;
}
}
}