ShareX/ShareX.UploadersLib/SharingServices/GooglePlusSharingService.cs
2016-03-22 22:45:12 -04:00

9 lines
No EOL
332 B
C#

namespace ShareX.UploadersLib.SharingServices
{
public class GooglePlusSharingService : SimpleSharingService
{
public override URLSharingServices EnumValue { get; } = URLSharingServices.GooglePlus;
protected override string UrlFormatString { get; } = "https://plus.google.com/share?url={0}";
}
}